0 JBC
↳1 JBC2FIG (⇒)
↳2 JBCTerminationGraph
↳3 FIGtoITRSProof (⇒)
↳4 AND
↳5 IDP
↳6 IDPtoQDPProof (⇒)
↳7 QDP
↳8 UsableRulesProof (⇔)
↳9 QDP
↳10 QReductionProof (⇔)
↳11 QDP
↳12 UsableRulesReductionPairsProof (⇔)
↳13 QDP
↳14 MRRProof (⇔)
↳15 QDP
↳16 PisEmptyProof (⇔)
↳17 YES
↳18 IDP
↳19 IDPNonInfProof (⇒)
↳20 AND
↳21 IDP
↳22 IDependencyGraphProof (⇔)
↳23 IDP
↳24 IDPNonInfProof (⇒)
↳25 AND
↳26 IDP
↳27 IDependencyGraphProof (⇔)
↳28 TRUE
↳29 IDP
↳30 IDependencyGraphProof (⇔)
↳31 TRUE
↳32 IDP
↳33 IDependencyGraphProof (⇔)
↳34 IDP
↳35 IDPNonInfProof (⇒)
↳36 AND
↳37 IDP
↳38 IDependencyGraphProof (⇔)
↳39 TRUE
↳40 IDP
↳41 IDependencyGraphProof (⇔)
↳42 TRUE
public class CountMetaListRec {
public static void main(String[] args) {
Random.args = args;
List l = createMetaList();
int count = countMetaList(l);
}
public static int countMetaList(List cur) {
if (cur == null) {
return 0;
} else {
if (cur.value instanceof List) {
List inner = (List) cur.value;
cur.value = inner.next;
cur = new List(inner.value, cur);
}
return 1 + countMetaList(cur.next);
}
}
public static List createMetaList() {
int count = Random.random();
List cur = null;
for (int i = 0; i < count; i++) {
int innerCount = Random.random();
List innerList = null;
for (int j = innerCount; j > 0; j--) {
innerList = new List(null, innerList);
}
cur = new List(innerList, cur);
}
return cur;
}
}
class List {
Object value;
List next;
public List(Object v, List n) {
this.value = v;
this.next = n;
}
}
public class Random {
static String[] args;
static int index = 0;
public static int random() {
String string = args[index];
index++;
return string.length();
}
}
Generated 62 rules for P and 25 rules for R.
Combined rules. Obtained 3 rules for P and 6 rules for R.
Filtered ground terms:
1150_0_countMetaList_NONNULL(x1, x2, x3) → 1150_0_countMetaList_NONNULL(x2, x3)
List(x1, x2, x3) → List(x2, x3)
2585_0_countMetaList_Return(x1) → 2585_0_countMetaList_Return
1187_0_countMetaList_Return(x1, x2) → 1187_0_countMetaList_Return
Filtered duplicate args:
1150_0_countMetaList_NONNULL(x1, x2) → 1150_0_countMetaList_NONNULL(x2)
Finished conversion. Obtained 3 rules for P and 6 rules for R. System has no predefined symbols.
Generated 69 rules for P and 49 rules for R.
Combined rules. Obtained 4 rules for P and 0 rules for R.
Filtered ground terms:
3643_0_createMetaList_LE(x1, x2, x3, x4, x5, x6, x7) → 3643_0_createMetaList_LE(x2, x3, x4, x5, x6, x7)
List(x1) → List
Cond_3643_0_createMetaList_LE1(x1, x2, x3, x4, x5, x6, x7, x8) → Cond_3643_0_createMetaList_LE1(x1, x3, x4, x5, x6, x7, x8)
3134_0_random_ArrayAccess(x1, x2, x3) → 3134_0_random_ArrayAccess(x2, x3)
Cond_3643_0_createMetaList_LE(x1, x2, x3, x4, x5, x6, x7, x8) → Cond_3643_0_createMetaList_LE(x1, x3, x4, x5, x6)
3166_0_random_IntArithmetic(x1, x2, x3, x4) → 3166_0_random_IntArithmetic(x2, x3)
Filtered duplicate args:
3643_0_createMetaList_LE(x1, x2, x3, x4, x5, x6) → 3643_0_createMetaList_LE(x1, x2, x3, x4, x6)
Cond_3643_0_createMetaList_LE1(x1, x2, x3, x4, x5, x6, x7) → Cond_3643_0_createMetaList_LE1(x1, x2, x3, x4, x5, x7)
Filtered unneeded arguments:
3134_1_createMetaList_InvokeMethod(x1, x2, x3, x4) → 3134_1_createMetaList_InvokeMethod(x1, x2, x4)
Cond_3134_1_createMetaList_InvokeMethod(x1, x2, x3, x4, x5) → Cond_3134_1_createMetaList_InvokeMethod(x1, x2, x3, x5)
3166_1_createMetaList_InvokeMethod(x1, x2, x3, x4) → 3166_1_createMetaList_InvokeMethod(x1, x2, x4)
Cond_3166_1_createMetaList_InvokeMethod(x1, x2, x3, x4, x5) → Cond_3166_1_createMetaList_InvokeMethod(x1, x2, x3, x5)
3643_0_createMetaList_LE(x1, x2, x3, x4, x5) → 3643_0_createMetaList_LE(x1, x3, x5)
Cond_3643_0_createMetaList_LE(x1, x2, x3, x4, x5) → Cond_3643_0_createMetaList_LE(x1, x2, x4)
Cond_3643_0_createMetaList_LE1(x1, x2, x3, x4, x5, x6) → Cond_3643_0_createMetaList_LE1(x1, x2, x4, x6)
Combined rules. Obtained 4 rules for P and 0 rules for R.
Finished conversion. Obtained 4 rules for P and 0 rules for R. System has predefined symbols.
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
(0) -> (0), if ((java.lang.Object(List(x1[0], x2[0])) →* java.lang.Object(List(java.lang.Object(List(x0[0]', x1[0]')), x2[0]'))))
(0) -> (1), if ((java.lang.Object(List(x1[0], x2[0])) →* java.lang.Object(List(java.lang.Object(x0[1]), x1[1]))))
(0) -> (2), if ((java.lang.Object(List(x1[0], x2[0])) →* java.lang.Object(List(NULL, x0[2]))))
(1) -> (0), if ((x1[1] →* java.lang.Object(List(java.lang.Object(List(x0[0], x1[0])), x2[0]))))
(1) -> (1), if ((x1[1] →* java.lang.Object(List(java.lang.Object(x0[1]'), x1[1]'))))
(1) -> (2), if ((x1[1] →* java.lang.Object(List(NULL, x0[2]))))
(2) -> (0), if ((x0[2] →* java.lang.Object(List(java.lang.Object(List(x0[0], x1[0])), x2[0]))))
(2) -> (1), if ((x0[2] →* java.lang.Object(List(java.lang.Object(x0[1]), x1[1]))))
(2) -> (2), if ((x0[2] →* java.lang.Object(List(NULL, x0[2]'))))
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(java.lang.Object(List(x0[0], x1[0])), x2[0]))) → 1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(x1[0], x2[0])))
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(java.lang.Object(x0[1]), x1[1]))) → 1150_0_COUNTMETALIST_NONNULL(x1[1])
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(NULL, x0[2]))) → 1150_0_COUNTMETALIST_NONNULL(x0[2])
1150_0_countMetaList_NONNULL(NULL) → 1187_0_countMetaList_Return
2423_1_countMetaList_InvokeMethod(2585_0_countMetaList_Return, java.lang.Object(List(x0, x1))) → 2585_0_countMetaList_Return
1659_1_countMetaList_InvokeMethod(1187_0_countMetaList_Return, NULL) → 2585_0_countMetaList_Return
1659_1_countMetaList_InvokeMethod(2585_0_countMetaList_Return, x0) → 2585_0_countMetaList_Return
1630_1_countMetaList_InvokeMethod(1187_0_countMetaList_Return, NULL) → 2585_0_countMetaList_Return
1630_1_countMetaList_InvokeMethod(2585_0_countMetaList_Return, x0) → 2585_0_countMetaList_Return
1150_0_countMetaList_NONNULL(NULL)
2423_1_countMetaList_InvokeMethod(2585_0_countMetaList_Return, java.lang.Object(List(x0, x1)))
1659_1_countMetaList_InvokeMethod(1187_0_countMetaList_Return, NULL)
1659_1_countMetaList_InvokeMethod(2585_0_countMetaList_Return, x0)
1630_1_countMetaList_InvokeMethod(1187_0_countMetaList_Return, NULL)
1630_1_countMetaList_InvokeMethod(2585_0_countMetaList_Return, x0)
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(java.lang.Object(List(x0[0], x1[0])), x2[0]))) → 1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(x1[0], x2[0])))
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(java.lang.Object(x0[1]), x1[1]))) → 1150_0_COUNTMETALIST_NONNULL(x1[1])
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(NULL, x0[2]))) → 1150_0_COUNTMETALIST_NONNULL(x0[2])
1150_0_countMetaList_NONNULL(NULL)
2423_1_countMetaList_InvokeMethod(2585_0_countMetaList_Return, java.lang.Object(List(x0, x1)))
1659_1_countMetaList_InvokeMethod(1187_0_countMetaList_Return, NULL)
1659_1_countMetaList_InvokeMethod(2585_0_countMetaList_Return, x0)
1630_1_countMetaList_InvokeMethod(1187_0_countMetaList_Return, NULL)
1630_1_countMetaList_InvokeMethod(2585_0_countMetaList_Return, x0)
1150_0_countMetaList_NONNULL(NULL)
2423_1_countMetaList_InvokeMethod(2585_0_countMetaList_Return, java.lang.Object(List(x0, x1)))
1659_1_countMetaList_InvokeMethod(1187_0_countMetaList_Return, NULL)
1659_1_countMetaList_InvokeMethod(2585_0_countMetaList_Return, x0)
1630_1_countMetaList_InvokeMethod(1187_0_countMetaList_Return, NULL)
1630_1_countMetaList_InvokeMethod(2585_0_countMetaList_Return, x0)
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(java.lang.Object(List(x0[0], x1[0])), x2[0]))) → 1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(x1[0], x2[0])))
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(java.lang.Object(x0[1]), x1[1]))) → 1150_0_COUNTMETALIST_NONNULL(x1[1])
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(NULL, x0[2]))) → 1150_0_COUNTMETALIST_NONNULL(x0[2])
No rules are removed from R.
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(NULL, x0[2]))) → 1150_0_COUNTMETALIST_NONNULL(x0[2])
POL(1150_0_COUNTMETALIST_NONNULL(x1)) = 2·x1
POL(List(x1, x2)) = x1 + 2·x2
POL(NULL) = 0
POL(java.lang.Object(x1)) = 2·x1
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(java.lang.Object(List(x0[0], x1[0])), x2[0]))) → 1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(x1[0], x2[0])))
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(java.lang.Object(x0[1]), x1[1]))) → 1150_0_COUNTMETALIST_NONNULL(x1[1])
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(java.lang.Object(List(x0[0], x1[0])), x2[0]))) → 1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(x1[0], x2[0])))
1150_0_COUNTMETALIST_NONNULL(java.lang.Object(List(java.lang.Object(x0[1]), x1[1]))) → 1150_0_COUNTMETALIST_NONNULL(x1[1])
POL(1150_0_COUNTMETALIST_NONNULL(x1)) = 2·x1
POL(List(x1, x2)) = 2 + 2·x1 + 2·x2
POL(java.lang.Object(x1)) = 2 + 2·x1
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Boolean, Integer
(0) -> (1), if ((x2[0] >= 1 && x2[0] < x0[0] →* TRUE)∧(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]) →* 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1]))∧(x3[0] →* x3[1])∧(x5[0] →* x5[1]))
(1) -> (2), if ((3166_0_random_IntArithmetic(x6[1], x7[1]) →* 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]))∧(x3[1] →* x4[2])∧(x5[1] →* x6[2]))
(2) -> (3), if ((x2[2] > 0 →* TRUE)∧(3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]) →* 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[3], x1[3])), x2[3]))∧(x4[2] →* x4[3])∧(x6[2] →* x6[3]))
(3) -> (4), if ((x4[3] →* x0[4])∧(x6[3] →* x2[4])∧(x1[3] →* 0))
(3) -> (6), if ((x4[3] →* x0[6])∧(x6[3] →* x2[6])∧(x1[3] →* x4[6]))
(4) -> (5), if ((x2[4] >= 0 && x0[4] > x2[4] + 1 →* TRUE)∧(x0[4] →* x0[5])∧(x2[4] →* x2[5]))
(5) -> (0), if ((3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x6[5], x7[5])), x8[5]) →* 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]))∧(x0[5] →* x3[0])∧(x2[5] + 1 →* x5[0]))
(6) -> (7), if ((x4[6] > 0 →* TRUE)∧(x0[6] →* x0[7])∧(x2[6] →* x2[7])∧(x4[6] →* x4[7]))
(7) -> (4), if ((x0[7] →* x0[4])∧(x2[7] →* x2[4])∧(x4[7] + -1 →* 0))
(7) -> (6), if ((x0[7] →* x0[6])∧(x2[7] →* x2[6])∧(x4[7] + -1 →* x4[6]))
(1) (&&(>=(x2[0], 1), <(x2[0], x0[0]))=TRUE∧3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0])=3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1])∧x3[0]=x3[1]∧x5[0]=x5[1] ⇒ 3134_1_CREATEMETALIST_INVOKEMETHOD(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])≥NonInfC∧3134_1_CREATEMETALIST_INVOKEMETHOD(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])≥COND_3134_1_CREATEMETALIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])∧(UIncreasing(COND_3134_1_CREATEMETALIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])), ≥))
(2) (>=(x2[0], 1)=TRUE∧<(x2[0], x0[0])=TRUE ⇒ 3134_1_CREATEMETALIST_INVOKEMETHOD(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])≥NonInfC∧3134_1_CREATEMETALIST_INVOKEMETHOD(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])≥COND_3134_1_CREATEMETALIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])∧(UIncreasing(COND_3134_1_CREATEMETALIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])), ≥))
(3) (x2[0] + [-1] ≥ 0∧x0[0] + [-1] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_3134_1_CREATEMETALIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])), ≥)∧[(-1)bni_31 + (-1)Bound*bni_31] + [(-1)bni_31]x5[0] + [bni_31]x3[0] ≥ 0∧[(-1)bso_32] ≥ 0)
(4) (x2[0] + [-1] ≥ 0∧x0[0] + [-1] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_3134_1_CREATEMETALIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])), ≥)∧[(-1)bni_31 + (-1)Bound*bni_31] + [(-1)bni_31]x5[0] + [bni_31]x3[0] ≥ 0∧[(-1)bso_32] ≥ 0)
(5) (x2[0] + [-1] ≥ 0∧x0[0] + [-1] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_3134_1_CREATEMETALIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])), ≥)∧[(-1)bni_31 + (-1)Bound*bni_31] + [(-1)bni_31]x5[0] + [bni_31]x3[0] ≥ 0∧[(-1)bso_32] ≥ 0)
(6) (x2[0] + [-1] ≥ 0∧x0[0] + [-1] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_3134_1_CREATEMETALIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])), ≥)∧[(-1)bni_31] = 0∧[bni_31] = 0∧0 = 0∧[(-1)bni_31 + (-1)Bound*bni_31] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_32] ≥ 0)
(7) (x2[0] ≥ 0∧x0[0] + [-2] + [-1]x2[0] ≥ 0 ⇒ (UIncreasing(COND_3134_1_CREATEMETALIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])), ≥)∧[(-1)bni_31] = 0∧[bni_31] = 0∧0 = 0∧[(-1)bni_31 + (-1)Bound*bni_31] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_32] ≥ 0)
(8) (x2[0] ≥ 0∧x0[0] ≥ 0 ⇒ (UIncreasing(COND_3134_1_CREATEMETALIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])), ≥)∧[(-1)bni_31] = 0∧[bni_31] = 0∧0 = 0∧[(-1)bni_31 + (-1)Bound*bni_31] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_32] ≥ 0)
(9) (COND_3134_1_CREATEMETALIST_INVOKEMETHOD(TRUE, 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1]), x3[1], x5[1])≥NonInfC∧COND_3134_1_CREATEMETALIST_INVOKEMETHOD(TRUE, 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1]), x3[1], x5[1])≥3166_1_CREATEMETALIST_INVOKEMETHOD(3166_0_random_IntArithmetic(x6[1], x7[1]), x3[1], x5[1])∧(UIncreasing(3166_1_CREATEMETALIST_INVOKEMETHOD(3166_0_random_IntArithmetic(x6[1], x7[1]), x3[1], x5[1])), ≥))
(10) ((UIncreasing(3166_1_CREATEMETALIST_INVOKEMETHOD(3166_0_random_IntArithmetic(x6[1], x7[1]), x3[1], x5[1])), ≥)∧[(-1)bso_34] ≥ 0)
(11) ((UIncreasing(3166_1_CREATEMETALIST_INVOKEMETHOD(3166_0_random_IntArithmetic(x6[1], x7[1]), x3[1], x5[1])), ≥)∧[(-1)bso_34] ≥ 0)
(12) ((UIncreasing(3166_1_CREATEMETALIST_INVOKEMETHOD(3166_0_random_IntArithmetic(x6[1], x7[1]), x3[1], x5[1])), ≥)∧[(-1)bso_34] ≥ 0)
(13) ((UIncreasing(3166_1_CREATEMETALIST_INVOKEMETHOD(3166_0_random_IntArithmetic(x6[1], x7[1]), x3[1], x5[1])), ≥)∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_34] ≥ 0)
(14) (>(x2[2], 0)=TRUE∧3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2])=3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[3], x1[3])), x2[3])∧x4[2]=x4[3]∧x6[2]=x6[3] ⇒ 3166_1_CREATEMETALIST_INVOKEMETHOD(3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])≥NonInfC∧3166_1_CREATEMETALIST_INVOKEMETHOD(3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])≥COND_3166_1_CREATEMETALIST_INVOKEMETHOD(>(x2[2], 0), 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])∧(UIncreasing(COND_3166_1_CREATEMETALIST_INVOKEMETHOD(>(x2[2], 0), 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])), ≥))
(15) (>(x2[2], 0)=TRUE ⇒ 3166_1_CREATEMETALIST_INVOKEMETHOD(3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])≥NonInfC∧3166_1_CREATEMETALIST_INVOKEMETHOD(3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])≥COND_3166_1_CREATEMETALIST_INVOKEMETHOD(>(x2[2], 0), 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])∧(UIncreasing(COND_3166_1_CREATEMETALIST_INVOKEMETHOD(>(x2[2], 0), 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])), ≥))
(16) (x2[2] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3166_1_CREATEMETALIST_INVOKEMETHOD(>(x2[2], 0), 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])), ≥)∧[(-1)bni_35 + (-1)Bound*bni_35] + [(-1)bni_35]x6[2] + [bni_35]x4[2] ≥ 0∧[(-1)bso_36] ≥ 0)
(17) (x2[2] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3166_1_CREATEMETALIST_INVOKEMETHOD(>(x2[2], 0), 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])), ≥)∧[(-1)bni_35 + (-1)Bound*bni_35] + [(-1)bni_35]x6[2] + [bni_35]x4[2] ≥ 0∧[(-1)bso_36] ≥ 0)
(18) (x2[2] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3166_1_CREATEMETALIST_INVOKEMETHOD(>(x2[2], 0), 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])), ≥)∧[(-1)bni_35 + (-1)Bound*bni_35] + [(-1)bni_35]x6[2] + [bni_35]x4[2] ≥ 0∧[(-1)bso_36] ≥ 0)
(19) (x2[2] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3166_1_CREATEMETALIST_INVOKEMETHOD(>(x2[2], 0), 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])), ≥)∧0 = 0∧0 = 0∧[(-1)bni_35] = 0∧[bni_35] = 0∧[(-1)bni_35 + (-1)Bound*bni_35] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_36] ≥ 0)
(20) (x2[2] ≥ 0 ⇒ (UIncreasing(COND_3166_1_CREATEMETALIST_INVOKEMETHOD(>(x2[2], 0), 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])), ≥)∧0 = 0∧0 = 0∧[(-1)bni_35] = 0∧[bni_35] = 0∧[(-1)bni_35 + (-1)Bound*bni_35] ≥ 0∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_36] ≥ 0)
(21) (COND_3166_1_CREATEMETALIST_INVOKEMETHOD(TRUE, 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[3], x1[3])), x2[3]), x4[3], x6[3])≥NonInfC∧COND_3166_1_CREATEMETALIST_INVOKEMETHOD(TRUE, 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[3], x1[3])), x2[3]), x4[3], x6[3])≥3643_0_CREATEMETALIST_LE(x4[3], x6[3], x1[3])∧(UIncreasing(3643_0_CREATEMETALIST_LE(x4[3], x6[3], x1[3])), ≥))
(22) ((UIncreasing(3643_0_CREATEMETALIST_LE(x4[3], x6[3], x1[3])), ≥)∧[(-1)bso_38] ≥ 0)
(23) ((UIncreasing(3643_0_CREATEMETALIST_LE(x4[3], x6[3], x1[3])), ≥)∧[(-1)bso_38] ≥ 0)
(24) ((UIncreasing(3643_0_CREATEMETALIST_LE(x4[3], x6[3], x1[3])), ≥)∧[(-1)bso_38] ≥ 0)
(25) ((UIncreasing(3643_0_CREATEMETALIST_LE(x4[3], x6[3], x1[3])), ≥)∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_38] ≥ 0)
(26) (&&(>=(x2[4], 0), >(x0[4], +(x2[4], 1)))=TRUE∧x0[4]=x0[5]∧x2[4]=x2[5] ⇒ 3643_0_CREATEMETALIST_LE(x0[4], x2[4], 0)≥NonInfC∧3643_0_CREATEMETALIST_LE(x0[4], x2[4], 0)≥COND_3643_0_CREATEMETALIST_LE(&&(>=(x2[4], 0), >(x0[4], +(x2[4], 1))), x0[4], x2[4], 0)∧(UIncreasing(COND_3643_0_CREATEMETALIST_LE(&&(>=(x2[4], 0), >(x0[4], +(x2[4], 1))), x0[4], x2[4], 0)), ≥))
(27) (>=(x2[4], 0)=TRUE∧>(x0[4], +(x2[4], 1))=TRUE ⇒ 3643_0_CREATEMETALIST_LE(x0[4], x2[4], 0)≥NonInfC∧3643_0_CREATEMETALIST_LE(x0[4], x2[4], 0)≥COND_3643_0_CREATEMETALIST_LE(&&(>=(x2[4], 0), >(x0[4], +(x2[4], 1))), x0[4], x2[4], 0)∧(UIncreasing(COND_3643_0_CREATEMETALIST_LE(&&(>=(x2[4], 0), >(x0[4], +(x2[4], 1))), x0[4], x2[4], 0)), ≥))
(28) (x2[4] ≥ 0∧x0[4] + [-2] + [-1]x2[4] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE(&&(>=(x2[4], 0), >(x0[4], +(x2[4], 1))), x0[4], x2[4], 0)), ≥)∧[(-1)bni_39 + (-1)Bound*bni_39] + [(-1)bni_39]x2[4] + [bni_39]x0[4] ≥ 0∧[(-1)bso_40] ≥ 0)
(29) (x2[4] ≥ 0∧x0[4] + [-2] + [-1]x2[4] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE(&&(>=(x2[4], 0), >(x0[4], +(x2[4], 1))), x0[4], x2[4], 0)), ≥)∧[(-1)bni_39 + (-1)Bound*bni_39] + [(-1)bni_39]x2[4] + [bni_39]x0[4] ≥ 0∧[(-1)bso_40] ≥ 0)
(30) (x2[4] ≥ 0∧x0[4] + [-2] + [-1]x2[4] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE(&&(>=(x2[4], 0), >(x0[4], +(x2[4], 1))), x0[4], x2[4], 0)), ≥)∧[(-1)bni_39 + (-1)Bound*bni_39] + [(-1)bni_39]x2[4] + [bni_39]x0[4] ≥ 0∧[(-1)bso_40] ≥ 0)
(31) (x2[4] ≥ 0∧x0[4] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE(&&(>=(x2[4], 0), >(x0[4], +(x2[4], 1))), x0[4], x2[4], 0)), ≥)∧[bni_39 + (-1)Bound*bni_39] + [bni_39]x0[4] ≥ 0∧[(-1)bso_40] ≥ 0)
(32) (COND_3643_0_CREATEMETALIST_LE(TRUE, x0[5], x2[5], 0)≥NonInfC∧COND_3643_0_CREATEMETALIST_LE(TRUE, x0[5], x2[5], 0)≥3134_1_CREATEMETALIST_INVOKEMETHOD(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x6[5], x7[5])), x8[5]), x0[5], +(x2[5], 1))∧(UIncreasing(3134_1_CREATEMETALIST_INVOKEMETHOD(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x6[5], x7[5])), x8[5]), x0[5], +(x2[5], 1))), ≥))
(33) ((UIncreasing(3134_1_CREATEMETALIST_INVOKEMETHOD(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x6[5], x7[5])), x8[5]), x0[5], +(x2[5], 1))), ≥)∧[1 + (-1)bso_42] ≥ 0)
(34) ((UIncreasing(3134_1_CREATEMETALIST_INVOKEMETHOD(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x6[5], x7[5])), x8[5]), x0[5], +(x2[5], 1))), ≥)∧[1 + (-1)bso_42] ≥ 0)
(35) ((UIncreasing(3134_1_CREATEMETALIST_INVOKEMETHOD(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x6[5], x7[5])), x8[5]), x0[5], +(x2[5], 1))), ≥)∧[1 + (-1)bso_42] ≥ 0)
(36) ((UIncreasing(3134_1_CREATEMETALIST_INVOKEMETHOD(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x6[5], x7[5])), x8[5]), x0[5], +(x2[5], 1))), ≥)∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧0 = 0∧[1 + (-1)bso_42] ≥ 0)
(37) (>(x4[6], 0)=TRUE∧x0[6]=x0[7]∧x2[6]=x2[7]∧x4[6]=x4[7] ⇒ 3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6])≥NonInfC∧3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6])≥COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])∧(UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥))
(38) (>(x4[6], 0)=TRUE ⇒ 3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6])≥NonInfC∧3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6])≥COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])∧(UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥))
(39) (x4[6] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[(-1)bni_43 + (-1)Bound*bni_43] + [(-1)bni_43]x2[6] + [bni_43]x0[6] ≥ 0∧[(-1)bso_44] ≥ 0)
(40) (x4[6] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[(-1)bni_43 + (-1)Bound*bni_43] + [(-1)bni_43]x2[6] + [bni_43]x0[6] ≥ 0∧[(-1)bso_44] ≥ 0)
(41) (x4[6] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[(-1)bni_43 + (-1)Bound*bni_43] + [(-1)bni_43]x2[6] + [bni_43]x0[6] ≥ 0∧[(-1)bso_44] ≥ 0)
(42) (x4[6] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[(-1)bni_43] = 0∧[bni_43] = 0∧[(-1)bni_43 + (-1)Bound*bni_43] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_44] ≥ 0)
(43) (x4[6] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[(-1)bni_43] = 0∧[bni_43] = 0∧[(-1)bni_43 + (-1)Bound*bni_43] ≥ 0∧0 = 0∧0 = 0∧[(-1)bso_44] ≥ 0)
(44) (COND_3643_0_CREATEMETALIST_LE1(TRUE, x0[7], x2[7], x4[7])≥NonInfC∧COND_3643_0_CREATEMETALIST_LE1(TRUE, x0[7], x2[7], x4[7])≥3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))∧(UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥))
(45) ((UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥)∧[(-1)bso_46] ≥ 0)
(46) ((UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥)∧[(-1)bso_46] ≥ 0)
(47) ((UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥)∧[(-1)bso_46] ≥ 0)
(48) ((UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥)∧0 = 0∧0 = 0∧0 = 0∧[(-1)bso_46] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(3134_1_CREATEMETALIST_INVOKEMETHOD(x1, x2, x3)) = [-1] + [-1]x3 + x2 + [-1]x1
POL(3134_0_random_ArrayAccess(x1, x2)) = [-1] + [-1]x1
POL(java.lang.Object(x1)) = x1
POL(ARRAY(x1, x2)) = [-1]
POL(COND_3134_1_CREATEMETALIST_INVOKEMETHOD(x1, x2, x3, x4)) = [-1] + [-1]x4 + x3 + [-1]x2
POL(&&(x1, x2)) = [-1]
POL(>=(x1, x2)) = [-1]
POL(1) = [1]
POL(<(x1, x2)) = [-1]
POL(3166_1_CREATEMETALIST_INVOKEMETHOD(x1, x2, x3)) = [-1] + [-1]x1 + [-1]x3 + x2
POL(3166_0_random_IntArithmetic(x1, x2)) = 0
POL(java.lang.String(x1, x2)) = [-1] + [-1]x2 + x1
POL(COND_3166_1_CREATEMETALIST_INVOKEMETHOD(x1, x2, x3, x4)) = [-1] + [-1]x4 + x3 + [-1]x2
POL(>(x1, x2)) = [-1]
POL(0) = 0
POL(3643_0_CREATEMETALIST_LE(x1, x2, x3)) = [-1] + [-1]x2 + x1
POL(COND_3643_0_CREATEMETALIST_LE(x1, x2, x3, x4)) = [-1] + [-1]x3 + x2
POL(+(x1, x2)) = x1 + x2
POL(COND_3643_0_CREATEMETALIST_LE1(x1, x2, x3, x4)) = [-1] + [-1]x3 + x2
POL(-1) = [-1]
COND_3643_0_CREATEMETALIST_LE(TRUE, x0[5], x2[5], 0) → 3134_1_CREATEMETALIST_INVOKEMETHOD(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x6[5], x7[5])), x8[5]), x0[5], +(x2[5], 1))
3643_0_CREATEMETALIST_LE(x0[4], x2[4], 0) → COND_3643_0_CREATEMETALIST_LE(&&(>=(x2[4], 0), >(x0[4], +(x2[4], 1))), x0[4], x2[4], 0)
3134_1_CREATEMETALIST_INVOKEMETHOD(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0]) → COND_3134_1_CREATEMETALIST_INVOKEMETHOD(&&(>=(x2[0], 1), <(x2[0], x0[0])), 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]), x3[0], x5[0])
COND_3134_1_CREATEMETALIST_INVOKEMETHOD(TRUE, 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1]), x3[1], x5[1]) → 3166_1_CREATEMETALIST_INVOKEMETHOD(3166_0_random_IntArithmetic(x6[1], x7[1]), x3[1], x5[1])
3166_1_CREATEMETALIST_INVOKEMETHOD(3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2]) → COND_3166_1_CREATEMETALIST_INVOKEMETHOD(>(x2[2], 0), 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]), x4[2], x6[2])
COND_3166_1_CREATEMETALIST_INVOKEMETHOD(TRUE, 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[3], x1[3])), x2[3]), x4[3], x6[3]) → 3643_0_CREATEMETALIST_LE(x4[3], x6[3], x1[3])
3643_0_CREATEMETALIST_LE(x0[4], x2[4], 0) → COND_3643_0_CREATEMETALIST_LE(&&(>=(x2[4], 0), >(x0[4], +(x2[4], 1))), x0[4], x2[4], 0)
3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6]) → COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])
COND_3643_0_CREATEMETALIST_LE1(TRUE, x0[7], x2[7], x4[7]) → 3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Boolean, Integer
(0) -> (1), if ((x2[0] >= 1 && x2[0] < x0[0] →* TRUE)∧(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]) →* 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1]))∧(x3[0] →* x3[1])∧(x5[0] →* x5[1]))
(1) -> (2), if ((3166_0_random_IntArithmetic(x6[1], x7[1]) →* 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]))∧(x3[1] →* x4[2])∧(x5[1] →* x6[2]))
(2) -> (3), if ((x2[2] > 0 →* TRUE)∧(3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]) →* 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[3], x1[3])), x2[3]))∧(x4[2] →* x4[3])∧(x6[2] →* x6[3]))
(3) -> (4), if ((x4[3] →* x0[4])∧(x6[3] →* x2[4])∧(x1[3] →* 0))
(7) -> (4), if ((x0[7] →* x0[4])∧(x2[7] →* x2[4])∧(x4[7] + -1 →* 0))
(3) -> (6), if ((x4[3] →* x0[6])∧(x6[3] →* x2[6])∧(x1[3] →* x4[6]))
(7) -> (6), if ((x0[7] →* x0[6])∧(x2[7] →* x2[6])∧(x4[7] + -1 →* x4[6]))
(6) -> (7), if ((x4[6] > 0 →* TRUE)∧(x0[6] →* x0[7])∧(x2[6] →* x2[7])∧(x4[6] →* x4[7]))
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer
(7) -> (6), if ((x0[7] →* x0[6])∧(x2[7] →* x2[6])∧(x4[7] + -1 →* x4[6]))
(6) -> (7), if ((x4[6] > 0 →* TRUE)∧(x0[6] →* x0[7])∧(x2[6] →* x2[7])∧(x4[6] →* x4[7]))
(1) (COND_3643_0_CREATEMETALIST_LE1(TRUE, x0[7], x2[7], x4[7])≥NonInfC∧COND_3643_0_CREATEMETALIST_LE1(TRUE, x0[7], x2[7], x4[7])≥3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))∧(UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥))
(2) ((UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥)∧[2 + (-1)bso_8] ≥ 0)
(3) ((UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥)∧[2 + (-1)bso_8] ≥ 0)
(4) ((UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥)∧[2 + (-1)bso_8] ≥ 0)
(5) ((UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥)∧0 = 0∧[2 + (-1)bso_8] ≥ 0)
(6) (>(x4[6], 0)=TRUE∧x0[6]=x0[7]∧x2[6]=x2[7]∧x4[6]=x4[7] ⇒ 3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6])≥NonInfC∧3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6])≥COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])∧(UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥))
(7) (>(x4[6], 0)=TRUE ⇒ 3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6])≥NonInfC∧3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6])≥COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])∧(UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥))
(8) (x4[6] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[(-1)bni_9 + (-1)Bound*bni_9] + [(2)bni_9]x4[6] ≥ 0∧[(-1)bso_10] ≥ 0)
(9) (x4[6] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[(-1)bni_9 + (-1)Bound*bni_9] + [(2)bni_9]x4[6] ≥ 0∧[(-1)bso_10] ≥ 0)
(10) (x4[6] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[(-1)bni_9 + (-1)Bound*bni_9] + [(2)bni_9]x4[6] ≥ 0∧[(-1)bso_10] ≥ 0)
(11) (x4[6] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[bni_9 + (-1)Bound*bni_9] + [(2)bni_9]x4[6] ≥ 0∧[(-1)bso_10] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(COND_3643_0_CREATEMETALIST_LE1(x1, x2, x3, x4)) = [-1] + [2]x4
POL(3643_0_CREATEMETALIST_LE(x1, x2, x3)) = [-1] + [2]x3
POL(+(x1, x2)) = x1 + x2
POL(-1) = [-1]
POL(>(x1, x2)) = [-1]
POL(0) = 0
COND_3643_0_CREATEMETALIST_LE1(TRUE, x0[7], x2[7], x4[7]) → 3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))
3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6]) → COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])
3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6]) → COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Boolean, Integer
(5) -> (0), if ((3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x6[5], x7[5])), x8[5]) →* 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]))∧(x0[5] →* x3[0])∧(x2[5] + 1 →* x5[0]))
(0) -> (1), if ((x2[0] >= 1 && x2[0] < x0[0] →* TRUE)∧(3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[0], x1[0])), x2[0]) →* 3134_0_random_ArrayAccess(java.lang.Object(ARRAY(x0[1], x1[1])), x2[1]))∧(x3[0] →* x3[1])∧(x5[0] →* x5[1]))
(1) -> (2), if ((3166_0_random_IntArithmetic(x6[1], x7[1]) →* 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]))∧(x3[1] →* x4[2])∧(x5[1] →* x6[2]))
(2) -> (3), if ((x2[2] > 0 →* TRUE)∧(3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[2], x1[2])), x2[2]) →* 3166_0_random_IntArithmetic(java.lang.Object(java.lang.String(x0[3], x1[3])), x2[3]))∧(x4[2] →* x4[3])∧(x6[2] →* x6[3]))
(3) -> (6), if ((x4[3] →* x0[6])∧(x6[3] →* x2[6])∧(x1[3] →* x4[6]))
(7) -> (6), if ((x0[7] →* x0[6])∧(x2[7] →* x2[6])∧(x4[7] + -1 →* x4[6]))
(6) -> (7), if ((x4[6] > 0 →* TRUE)∧(x0[6] →* x0[7])∧(x2[6] →* x2[7])∧(x4[6] →* x4[7]))
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer
(7) -> (6), if ((x0[7] →* x0[6])∧(x2[7] →* x2[6])∧(x4[7] + -1 →* x4[6]))
(6) -> (7), if ((x4[6] > 0 →* TRUE)∧(x0[6] →* x0[7])∧(x2[6] →* x2[7])∧(x4[6] →* x4[7]))
(1) (COND_3643_0_CREATEMETALIST_LE1(TRUE, x0[7], x2[7], x4[7])≥NonInfC∧COND_3643_0_CREATEMETALIST_LE1(TRUE, x0[7], x2[7], x4[7])≥3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))∧(UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥))
(2) ((UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥)∧[1 + (-1)bso_7] ≥ 0)
(3) ((UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥)∧[1 + (-1)bso_7] ≥ 0)
(4) ((UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥)∧[1 + (-1)bso_7] ≥ 0)
(5) ((UIncreasing(3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))), ≥)∧0 = 0∧[1 + (-1)bso_7] ≥ 0)
(6) (>(x4[6], 0)=TRUE∧x0[6]=x0[7]∧x2[6]=x2[7]∧x4[6]=x4[7] ⇒ 3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6])≥NonInfC∧3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6])≥COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])∧(UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥))
(7) (>(x4[6], 0)=TRUE ⇒ 3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6])≥NonInfC∧3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6])≥COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])∧(UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥))
(8) (x4[6] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[bni_8 + (-1)Bound*bni_8] + [bni_8]x4[6] ≥ 0∧[(-1)bso_9] ≥ 0)
(9) (x4[6] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[bni_8 + (-1)Bound*bni_8] + [bni_8]x4[6] ≥ 0∧[(-1)bso_9] ≥ 0)
(10) (x4[6] + [-1] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[bni_8 + (-1)Bound*bni_8] + [bni_8]x4[6] ≥ 0∧[(-1)bso_9] ≥ 0)
(11) (x4[6] ≥ 0 ⇒ (UIncreasing(COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])), ≥)∧[(2)bni_8 + (-1)Bound*bni_8] + [bni_8]x4[6] ≥ 0∧[(-1)bso_9] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(COND_3643_0_CREATEMETALIST_LE1(x1, x2, x3, x4)) = [1] + x4
POL(3643_0_CREATEMETALIST_LE(x1, x2, x3)) = [1] + x3
POL(+(x1, x2)) = x1 + x2
POL(-1) = [-1]
POL(>(x1, x2)) = [-1]
POL(0) = 0
COND_3643_0_CREATEMETALIST_LE1(TRUE, x0[7], x2[7], x4[7]) → 3643_0_CREATEMETALIST_LE(x0[7], x2[7], +(x4[7], -1))
3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6]) → COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])
3643_0_CREATEMETALIST_LE(x0[6], x2[6], x4[6]) → COND_3643_0_CREATEMETALIST_LE1(>(x4[6], 0), x0[6], x2[6], x4[6])
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer